home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 March / PCWorld_2002-03_cd.bin / Software / TemaCD / xteq / setup.exe / {app} / plugins / XQ WinNT AutoLogin Settings.xpl < prev    next >
Text File  |  2001-04-12  |  2KB  |  67 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="3"
  4. "UIPATH"="Network\Auto Login\Windows NT/2K/XP"
  5. "NAME"="Settings"
  6. "VERSION"="1.56"
  7. "LANGUAGE"="VBScript"
  8. "OSVERSION"="010101"
  9. "TEXT 1"="User name"
  10. "TEXT 2"="Password"
  11. "TEXT 3"="Domain"
  12. "DESCRIPTION 1"="Auto login can be used to eliminate the "Press Ctrl+Alt+Del to login" screen."
  13. "DESCRIPTION 2"="Enter your user information here. The value for "Domain" is needed only if you are using a domain, else leave it blank."
  14. "DESCRIPTION 3"="When you are finished, apply your changes and select the "General" plug-in to activate auto logon."
  15. "AUTHOR"="Xteq Systems"
  16. "CONTACTURL"="http://www.xteq.com"
  17. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  18. "COMMENT 1"=" "
  19.  
  20.  
  21. sRP="HKLM\Software\Microsoft\Windows NT\CurrentVersion\WinLogon\"
  22. Sub Plugin_Initialize 
  23.  if RegPathExists(sRP) then
  24.   s=RegReadValue(srp&"DefaultUserName")
  25.   SetUIElement 1,s
  26.  
  27.   s=RegReadValue(srp&"DefaultPassword")
  28.   SetUIElement 2,s
  29.  
  30.   s=RegReadValue(srp&"DefaultDomain")
  31.   SetUIElement 3,s
  32.  else
  33.   Disable
  34.  end if
  35. End Sub
  36.  
  37. Sub Plugin_CheckData(ElementIndex)
  38. End Sub
  39.  
  40.  
  41. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  42.  s=GetUIElement(1)
  43.  Call RegWriteValue(srp&"DefaultUserName",s,1)
  44.  
  45.  s=GetUIElement(2)
  46.  Call RegWriteValue(srp&"DefaultPassword",s,1)
  47.  
  48.  s=GetUIElement(3)
  49.  If Len(s)>0 then
  50.   Call RegWriteValue(srp&"DefaultDomain",s,1)
  51.  else
  52.   s=RegReadValue(srp&"DefaultDomain")
  53.  
  54.   if IsNull(s)=false and Len(s)>0 then
  55.      Call RegDeleteValue(srp&"DefaultDomain")
  56.   end if
  57.  end if
  58.  
  59.  Logoff
  60. End Sub
  61.  
  62. Sub Plugin_Terminate 
  63. End Sub
  64.  
  65.  
  66.  
  67.